From: Jeremy BĂ­cha Date: Tue, 7 Oct 2025 23:06:53 +0000 (-0400) Subject: tests: Don't run openjpeg tests on big-endian X-Git-Tag: archive/raspbian/1.28.2-1+rpi1^2^2~2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com//%22stanciumarius94%40gmail.com/%22/%22http:/www.example.com/%22stanciumarius94%40gmail.com/%22?a=commitdiff_plain;h=233dbebd7a0dc37d19066d9f833c0a46c99f7c0f;p=gst-plugins-bad1.0.git tests: Don't run openjpeg tests on big-endian This could mean that openjpeg is broken on these architectures! Gbp-Pq: Name Skip-failing-tests-big-endian.patch --- diff --git a/tests/check/meson.build b/tests/check/meson.build index 9d7c5350..69259322 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -68,7 +68,7 @@ base_tests = [ [['elements/nvenc.c'], false, [gstgl_dep, gmodule_dep]], [['elements/nvdec.c'], not gstgl_dep.found(), [gstgl_dep, gmodule_dep]], [['elements/svthevcenc.c'], not svthevcenc_dep.found(), [svthevcenc_dep]], - [['elements/openjpeg.c'], not openjpeg_dep.found(), [openjpeg_dep]], + [['elements/openjpeg.c'], not openjpeg_dep.found() or host_machine.endian() == 'big', [openjpeg_dep]], [['elements/pcapparse.c'], false, [libparser_dep]], [['elements/pnm.c'], get_option('pnm').disabled()], [['elements/proxysink.c'], get_option('proxy').disabled()],